home *** CD-ROM | disk | FTP | other *** search
/ Delphi 2 - Developers' Solutions / Delphi 2 Developers' Solutions.iso / dds / chtsht / hpa.txt < prev    next >
Encoding:
Text File  |  1995-09-06  |  732 b   |  18 lines

  1. The "Play AVI in Dialog" menu option sets a flag
  2. which is used by the OnHandlePlayAVIFile method 
  3. of the HTDisplayBox component. This method is used 
  4. to modify how clicks on links which play AVI files
  5. are handled. In this case, the AVI files are not
  6. put in the built-in display dialog but are 
  7. instead sent to a TMultiMediaPlayer component
  8. in a generic dialog. (This could be used to
  9. direct the display to other custom components
  10. of an application.)
  11.  
  12. (Note: Assert methods normally are used to abort
  13. all further processing of an action, while the
  14. Handle Methods modify the processing. These
  15. two methods can each be overridden in code by
  16. direct assignment for Assert types and virtual
  17. overriding for Handle types.)
  18.